home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / lang / SmallEiffel.lha / SmallEiffel / man / print_jvm_class.txt < prev    next >
Text File  |  1998-12-22  |  1KB  |  41 lines

  1.  
  2.                         The print_jvm_class command
  3.                                       
  4.    Usage
  5.    
  6.    print_jvm_class <Path>[.class]
  7.    
  8.    Command print_jvm_class prints a human readable version of the <Path>
  9.    class file. Printing is done on standard output. This command was
  10.    developed to check the byte code produced by command compile_to_jvm.
  11.    It is useful only if you want to have a close look at the generated
  12.    Java byte code.
  13.    
  14.    This command may also be used to print Java byte code you obtained
  15.    with Java compilers, such as javac. We find the output of
  16.    print_jvm_class more readable than the output of javap.
  17.    
  18.    Examples
  19.    
  20.    First, you have to produce some class files using command
  21.    compile_to_jvm:
  22.    compile_to_jvm -boost hello_world
  23.           
  24.    Then, using command print_to_jvm_class you can print on standard
  25.    output a readable view of any produced class file. The following
  26.    command prints the main class :
  27.    print_jvm_class hello_world.class
  28.           
  29.    You can also print any class file of the hello_world directory. For
  30.    example, under Unix, you can print the byte code produced for class
  31.    INTEGER using command :
  32.    print_jvm_class hello_world/integer.class
  33.           
  34.                                    [Line]
  35.    Copyright © Dominique COLNET and Suzanne COLLIN - [1]<colnet@loria.fr>
  36.                     Last update: Tuesday June 9th, 1998 
  37.  
  38. References
  39.  
  40.    1. mailto:colnet@loria.fr
  41.